home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / DevCon / Milan_1991 / Devcon91.1 / Libraries / Workbench / Makefile < prev   
Encoding:
Makefile  |  1992-09-01  |  347 b   |  18 lines

  1. #
  2. # Makefile for Workbench examples.
  3. #
  4. # Assumes INCLUDE: & LIB: are assignments to the V36 lib & include set.
  5. #
  6. # Compiled with Lattice C V5.05
  7. #
  8.  
  9. .c.o:
  10.     lc -iINCLUDE: -cfist -v $*.c
  11.     blink lib:c.o $*.o TO $> LIB LIB:lc.lib LIB:amiga.lib NODEBUG
  12.  
  13. all: AppIcon AppMenu AppWindow
  14.  
  15. AppIcon: AppIcon.o
  16. AppMenu: AppMenu.o
  17. AppWindow: AppWindow.o
  18.